Below is an example of a Selerix transmittal used by a Selerix web services Query call and is the same transmittal produced by the sample code in this section. Data is from a test case and therefore contains no actual private information.
Selerix recommends building transmittal data either by using the Selerix .NET Library in Visual Studio or the BenSelect report editor online, which gives you access to Intellisense code completion helpers. Using these tools you can see all possible elements of a Selerix data transmittal using a familiar object environment.
<?xml version="1.0" encoding="utf-8"?>
<Transmittal xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" SenderID="dc139c4c-7f19-4088-995c-b7b434f27039" Type="GetApplicants" PortfolioID="87902a63-3ef7-43fa-ada2-d9c9c9b4e0fe">
<Group />
<Applicants>
<Applicant>
<Sex>Unknown</Sex>
<EmployeeIdent>Employee_12345</EmployeeIdent>
</Applicant>
<Applicant>
<SSN>998759263</SSN>
<Sex>Unknown</Sex>
</Applicant>
<Applicant>
<FirstName>Lucy</FirstName>
<LastName>Boozman</LastName>
<Sex>Unknown</Sex>
<BirthDate>1952-06-05T00:00:00</BirthDate>
</Applicant>
</Applicants>
</Transmittal>